This post is part of SpreadCheats series, read the rest of posts and cheat excel to become productive.
A combination chart is when you combine two different charts to make one. A popular example of combination charts is a line & bar graph combination. See below illustration:
Today we will learn how to create a simple combination chart.
- For our combination chart, we will use the following data of Sales & Profits
- First we will make a simple bar chart for the sales data. Just select the Sales data table, go to insert > chart and specify type as “column chart” (this is the default selection btw). Once you are done, the chart looks like this:
- Now, select the profits data, press ctrl+c to copy it to clip board, and select the sales chart you have created above, and press ctrl+v to paste this data in to the sales chart. Essentially we are adding one more series of data to the sales chart.
- Now the chart should look like below. Right click on the new series (profits) and select “chart type”.
- From the chart type dialog change the type of chart from “column” to “line” (or whatever other type you fancy)
- That is all, you have successfully created a combination chart in excel.
Download the Excel Combination Chart Tutorial workbook and learn by experimenting.
As you can probably guess by now, there are some restrictions on what you can mix though. Best way to learn and understand combination charts is by experimenting. Just select one of the data series and change the chart type.
Like this ? Read other SpreadCheats to make your day to day spreadsheeting a breeze.
One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”
Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.
I added a new sheet, and named the ranges for Sara and James.
Maybe something like:
B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))
Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.